The Property editor appears in the lower section of the Model panel (if the Combo view is active) or as a stand-alone panel called Property view.
Generally, the Property editor is intended to deal with one object at a time. The values shown in the Property editor belong to the selected object. Despite this, some properties like colors can be set for multiple selected objects. If no element is selected the Property editor is empty.
Not all properties can be modified, some are read-only.
The Data properties of a Part Box
A property is a piece of information like a number or a text string that is attached to a FreeCAD document or an object in a document. Properties can be viewed and modified with the Property editor.
Properties play a very important part in FreeCAD, since it has been designed to work with parametric objects, which are objects defined only by their properties.
Custom scripted objects in FreeCAD can have properties of the following types:
Boolean
Float
FloatList
FloatConstraint
Angle
Distance
Integer
IntegerConstraint
Percent
Enumeration
IntegerList
String
StringList
Link
LinkList
Matrix
Vector
VectorList
Placement
PlacementLink
Color
ColorList
Material
Path
File
FileIncluded
PartShape
FilletContour
Circle
There are two types of feature properties accessible through tabs at the bottom of the property editor:
Base
Base
DataPlacement :
Summary of the data below.
Every feature has a placement that can be controlled through the Data Properties table. It controls the placement of the part with respect to the coordinate system. NOTE: The placement properties do not affect the physical dimensions of the feature, but merely its position in space!
If you select the title Placement , a button with three small points appears to the right. Clicking this button ..., opens the Tasks_Placement options window.
DataAngle :
Specifies the angle to be used with the axis property (below). An angle is set here, and the axis that the angle acts upon is set with the axis property.
The feature is rotated by the specified angle, about the specified axis.
A usage example might be if you created a revolution feature as required, but then needed to rotate the whole feature by some amount, in order to allow it to line-up with another pre-existing feature.
DataAxis :
This property specifies the axis/axes about which the feature is to be rotated. The exact value of rotation comes from the angle property (above).
This property takes three arguments, which are passed as numbers in the x, y, and z boxes in the tool. Setting a value for more than one of the axes will cause the part to be rotated in each axis, by the angle value multiplied by the value for the axis.
For example, with an angle of 15° set, specifying a value of 1.0 for x, and 2.0 for y will cause the finished part to be rotated 15° in the x-axis AND 30° in the y-axis.
DataPosition :
This property specifies the base point to which all dimensions refer. This takes three arguments, which are passed as numbers to the x, y, and z boxes in the tool. Setting a value for more than one of the boxes will cause the part to be translated by the number of units along the corresponding axis.
DataLabel :
The Label is the name given to the object (feature), this name can be changed as desired.
PS: The displayed properties can vary, depending on the tool used.
A property is a piece of information like a number or a text string that is attached to a FreeCAD document or an object in the document. Many property types are available. Some of the most common types are:
App::PropertyAngle
App::PropertyBool
App::PropertyDistance
App::PropertyFloat
App::PropertyInteger
App::PropertyLength
App::PropertyPlacement
App::PropertyString
App::PropertyVector
The Property editor has two tabs giving access to two classes of properties:
ViewObject
of the object, and are only accessible when the graphical user interface (GUI) is loaded. They are not accessible when using FreeCAD in console mode, or as a headless library. By default changes to View properties are not added to the undo stack and cannot be undone and redone with Std Undo and Std Redo. But it is possible to change this by setting the fine-tuning parameter AutoTransactionView to true
.Different objects may have different properties. However, many objects have the same properties because they are derived from the same internal class.
Most geometrical objects that can be created and displayed in the 3D view are derived from a Part::Feature
. See Part Feature for the basic properties these objects have.
For 2D geometry, most objects are derived from a Part::Part2DObject
(itself derived from a Part::Feature
) which is the base of Sketches, and most Draft objects. See Part Part2DObject for the basic properties these objects have.
To display the context menu of the Property editor right-click the background of the editor, or right-click a property.
Right-clicking the background shows three options:
When right-clicking a property the following additional options are available:
Tracking
or Enabled
for this to work. This is related to Variant Links.See FeaturePython Custom Properties.
See Combo view.